{% extends 'billing/base.html' %} {% block content %}

Bill Details

Customer: {{ bill.customer_name }}

Date: {{ bill.date }}

Items
{% for i in bill.items.all %} {% endfor %}
Item Qty Subtotal
{{ i.item.name }} {{ i.quantity }} {{ i.subtotal }}

Total: ₹ {{ bill.total_amount }}

⬇ Download PDF
{% endblock %}